home *** CD-ROM | disk | FTP | other *** search
- /*
- script.h
- */
-
- #ifndef _SCRIPT_H_
- #define _SCRIPT_H_
-
- LONG Script_SetRexxVar (struct RexxMsg *msg, char *name, char *value);
- LONG Script_GetRexxVar (struct RexxMsg *msg, char *name, char **value);
-
- struct ScriptContext *Script_AllocContext (void);
- void Script_FreeContext (struct ScriptContext *sc);
-
- void Script_SetMsgContext (struct RexxMsg *msg, struct ScriptContext *sc);
- struct ScriptContext *Script_GetMsgContext (struct RexxMsg *msg);
-
- LONG Script_SetStringVar (struct ScriptContext *sc, char *name, char *value);
- LONG Script_GetStringVar (struct ScriptContext *sc, char *name, char **value);
-
- #endif /* _SCRIPT_H_ */
-